home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / DeveloperLabs / Lab4 / Solution / PaintDocView.h < prev    next >
Text File  |  1995-06-12  |  436b  |  24 lines

  1. #import <appkit/View.h>
  2.  
  3. @interface PaintDocView : View
  4. {
  5.     id paintDropBitmap;
  6.     id docBitmap;
  7.     int brushShape;
  8.     float brushSize;
  9.     float paintColor;
  10. }
  11.  
  12. - clear;
  13. - setDocBrushShape:(int)newBrushShape;
  14. - setDocBrushSize:(float)newBrushSize;
  15. - setDocPaintColor:(float)newPaintColor;
  16. - updatePaintDropBitmap;
  17. - mouseDown:(NXEvent*)theEvent;
  18. - paintOneDrop:(NXPoint *)cursorLocation;
  19. - drawSelf:(NXRect *)r:(int)count;
  20.  
  21.  
  22.  
  23. @end
  24.